/* --- Estilo del cuerpo letra color y contenedores --- */

body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.7;
    color: #333;
    background-color: #f4f4f4;
}

.container {
    width: 85%;
    max-width: 1200px;
    margin: auto;
    overflow: hidden;
}

/* --- Estilos del Encabezado y logo es igual a las demas paginas --- */
header {
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .logo img {
    height: 40px;
}

header nav ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
}

header nav ul li {
    margin-left: 20px;
}

header nav ul li a {
    text-decoration: none;
    color: #333;
    padding: 10px 15px;
    border-radius: 5px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

header nav ul li a:hover {
    background-color: #e8f0fe;
    color: #1976d2;
}

/* --- Estilos del carrusel de imagenes --- */
.hero {
    padding: 60px 0;
    background-color: #e8f0fe;
}

.carousel {
    max-width: 900px;
    margin: 0 auto;
}

.carousel img {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* --- Estilos de Secciones Generales --- */
.section {
    padding: 60px 0;
}

.section h2 {
    text-align: center;
    margin-bottom: 40px;
    color: #1976d2;
}

/* --- Estilos de la Seccion "Soluciones" --- */
.soluciones-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    grid-gap: 30px;
}

.soluciones-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.soluciones-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

.soluciones-item h3 {
    color: #1976d2;
    margin-bottom: 15px;
}

/* --- Estilos del Pie de Pagina Igual que todas las otras paginas --- */
footer {
    background-color: #e0e0e0;
    color: #333;
    text-align: center;
    padding: 20px 0;
}